ÄúµÄλÖãºÑ°ÃÎÍøÊ×Ò³£¾±à³ÌÀÖÔ°£¾VBScript£¾VBScript


objects constants operators statements functions properties methods






FUNCTION:  IsArray( )

IsArray(Expression)

The IsArray function determines if the expression is an array.

Code:
<% Dim myarray(10) %>
<% =IsArray(myarray) %>

Output:
True

Code:
<% =IsArray("This is a string.") %>

Output:
False